From deec573420630c7124bf7832a1fb319192e0bf96 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 13 Mar 2008 00:37:27 +0000 Subject: [PATCH] More debug printfs for populating the completion store Signed-off-by: Federico Mena Quintero svn path=/trunk/; revision=19825 --- gtk/gtkfilechooserentry.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c index f016c376ae..1495f22abd 100644 --- a/gtk/gtkfilechooserentry.c +++ b/gtk/gtkfilechooserentry.c @@ -768,6 +768,8 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry) path = tmp_list->data; + printf ("Getting info for %s\n", (char *) path); + info = gtk_file_folder_get_info (chooser_entry->current_folder, path, NULL); /* NULL-GError */ @@ -798,6 +800,8 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry) gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), GTK_TREE_MODEL (chooser_entry->completion_store)); + + printf ("Finished populating completion store\n"); } /* When we finish loading the current folder, this function should get called to -- 2.30.2